func internal/fmtsort.compare
6 uses
internal/fmtsort (current package)
sort.go#L63: return compare(a.Key, b.Key)
sort.go#L72: func compare(aVal, bVal reflect.Value) int {
sort.go#L111: if c := compare(aVal.Field(i), bVal.Field(i)); c != 0 {
sort.go#L118: if c := compare(aVal.Index(i), bVal.Index(i)); c != 0 {
sort.go#L127: c := compare(reflect.ValueOf(aVal.Elem().Type()), reflect.ValueOf(bVal.Elem().Type()))
sort.go#L131: return compare(aVal.Elem(), bVal.Elem())
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |